show/hide echo
echo "foo"
## fooFollow the instructions on the Quarto website to configure your HTML documents to run Bash code chunks.
Specify the engine field of in the YAML header of the .qmd file:
---
title: "Using Bash"
engine: knitr
---You can also add any knitr chunk options:
knitr:
opts_chunk:
collapse: trueThe code chunks function like R or Python code chunks:
```{bash}
echo "foo"
```You caan also specify the code chunk options with the hash-pipe:
```{bash}
#| code-fold: show
#| code-summary: 'show/hide echo'
echo "foo"
```echo "foo"
## foo